Skip to content

Commit

Permalink
Forgot a '-c' option to some compile rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanem committed Oct 15, 2020
1 parent 3e2194a commit b54194c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Makefile.MingW
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,15 @@ vclean realclean: clean
- rmdir $(OBJ_DIR)

$(OBJ_DIR)/geoip_1.o: geoip.c
$(CC) -o $@ $(CFLAGS) -DTEST_GEOIP $<
$(CC) -c -o $@ $(CFLAGS) -DTEST_GEOIP $<
@echo

$(OBJ_DIR)/init_1.o: init.c
$(CC) -o $@ $(CFLAGS) -DTEST_GEOIP $<
$(CC) -c -o $@ $(CFLAGS) -DTEST_GEOIP $<
@echo

$(OBJ_DIR)/%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $<
$(CC) -c $(CFLAGS) -o $@ $<
@echo

#
Expand Down

0 comments on commit b54194c

Please sign in to comment.