Skip to content
Snippets Groups Projects
Commit eaae1d5d authored by Armin Biere's avatar Armin Biere
Browse files

slightly optimized makefile

parent 8c898612
No related branches found
No related tags found
No related merge requests found
......@@ -44,10 +44,10 @@ indent:
indent ../*/*.[ch]
kissat: main.o $(APPOBJ) libkissat.a makefile
$(LD) -o $@ main.o $(APPOBJ) -L. -lkissat -lm
$(LD) -o $@ $< $(APPOBJ) -L. -lkissat -lm
tissat: test.o $(TSTOBJ) libkissat.a makefile
$(LD) -o $@ test.o $(TSTOBJ) -L. -lkissat -lm
$(LD) -o $@ $< $(TSTOBJ) -L. -lkissat -lm
build.h:
../scripts/generate-build-header.sh > $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment