diff options
Diffstat (limited to 'unix.mak')
-rw-r--r-- | unix.mak | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/unix.mak b/unix.mak new file mode 100644 index 0000000..ddc172c --- /dev/null +++ b/unix.mak @@ -0,0 +1,17 @@ +# Linux +CC=gcc +CFLAGS=-g -Wall -ansi -pedantic -Wmissing-prototypes +LDLIBS= +OBJ=.o +EXE= +FE=-o +IJS_EXEC_SERVER=ijs_exec_unix$(OBJ) +RM=rm -f + +include common.mak + +clean: common_clean + $(RM) *~ gmon.out core ijs_spec.log ijs_spec.tex ijs_spec.aux + +ijs_spec.pdf: ijs_spec.sgml + db2pdf ijs_spec.sgml
\ No newline at end of file |