diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,6 +5,8 @@ all: cswave cswave.exe cswave: cswave.c cswave.exe: export CC = x86_64-w64-mingw32-gcc +cswave.exe: cswave.c + $(CC) $(CFLAGS) $(LDFLAGS) $< $(OBJS) $(LDLIBS) -o $@ clean: $(RM) *.o |