Changeset 560 for trunk/psLib/test/sysUtils/Makefile
- Timestamp:
- May 1, 2004, 1:04:35 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sysUtils/Makefile (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sysUtils/Makefile
r557 r560 3 3 ## Makefile: test/sysUtils 4 4 ## 5 ## $Revision: 1. 5$ $Name: not supported by cvs2svn $6 ## $Date: 2004-0 4-30 06:19:57$5 ## $Revision: 1.6 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-05-01 23:04:35 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 10 10 ############################################################################### 11 11 12 ############################################################################### 13 # Note: I added specific entries for the psTrace files. The reason I did 14 # this was because the generic rules were failing on the existing test 15 # code (and hence, on my tst_psTraceXX.c code as well). I am tempted to 16 # fix the generic rules, but that might break existing codes. When this 17 # problem is resolved, I'll remove the specific rules for psTrace. -GLG 18 # Also, psLogMsg. 19 # Also, psHash. 20 ############################################################################### 12 21 include ../../src/Makefile.Globals 13 22 … … 20 29 atst_psAbort_02 \ 21 30 atst_psAbort_03 \ 22 tst_psTrace00 \23 tst_psTrace01 \24 tst_psTrace02 \25 tst_psTrace03 \26 31 tst_psStringCopy 32 TARGET_TRACE = tst_psTrace00 tst_psTrace01 tst_psTrace02 tst_psTrace03 \ 33 tst_psTrace04 34 TARGET_LOGMSG = tst_psLogMsg00 tst_psLogMsg01 tst_psLogMsg02 tst_psLogMsg03 35 TARGET_HASH = tst_psHash00 tst_psHash01 tst_psHash02 tst_psHash03 tst_psHash04 27 36 28 all: $(TARGET) 37 all: $(TARGET) 38 psTrace: $(TARGET_TRACE) 39 psLogMsg: $(TARGET_LOGMSG) 40 psHash: $(TARGET_HASH) 29 41 30 42 tst_psError: tst_psError.o … … 37 49 @echo " Deleting executable and binary files for 'test/sysUtils'" 38 50 $(RM) $(TARGET) *.o *.lint 51 52 tst_psHash00: tst_psHash00.c 53 $(CC) tst_psHash00.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psHash00 54 55 tst_psHash01: tst_psHash01.c 56 $(CC) tst_psHash01.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psHash01 57 58 tst_psHash02: tst_psHash02.c 59 $(CC) tst_psHash02.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psHash02 60 61 tst_psHash03: tst_psHash03.c 62 $(CC) tst_psHash03.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psHash03 63 64 tst_psHash04: tst_psHash04.c 65 $(CC) tst_psHash04.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psHash04 66 67 tst_psLogMsg00: tst_psLogMsg00.c 68 $(CC) tst_psLogMsg00.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psLogMsg00 69 70 tst_psLogMsg01: tst_psLogMsg01.c 71 $(CC) tst_psLogMsg01.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psLogMsg01 72 73 tst_psLogMsg02: tst_psLogMsg02.c 74 $(CC) tst_psLogMsg02.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psLogMsg02 75 76 tst_psLogMsg03: tst_psLogMsg03.c 77 $(CC) tst_psLogMsg03.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psLogMsg03 39 78 40 79 tst_psTrace00: tst_psTrace00.c … … 50 89 $(CC) tst_psTrace03.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psTrace03 51 90 91 tst_psTrace04: tst_psTrace04.c 92 $(CC) tst_psTrace04.c $(LDFLAGS) -L$(PSLIB_LIB_DIR) -L.. -lpslib -lpstest -I$(PSLIB_INCL_DIR) -I.. -o tst_psTrace04 93 52 94 %.o : %.c 53 95 $(CC) $(CFLAGS) $(CPPFLAGS) -I.. -I$(PSLIB_INCL_DIR) -c -o $@ $< … … 60 102 61 103 distclean: 62 rm DistCleanFiles104 rm -rf $(TARGET_TRACE) $(TARGET_LOGMSG) $(TARGET_HASH)
Note:
See TracChangeset
for help on using the changeset viewer.
