mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
16 lines
239 B
Makefile
16 lines
239 B
Makefile
|
|
all-sub: $(INTDIR) all
|
|
|
|
clean-sub: clean
|
|
|
|
$(INTDIR):
|
|
!if "$(SRCDIR)" == ""
|
|
@if not exist $(TARGET) mkdir $(TARGET)
|
|
!endif
|
|
@if not exist $(INTDIR) mkdir $(INTDIR)
|
|
|
|
{$(SUBDIR)}.c{$(INTDIR)}.obj::
|
|
$(CC) -c $(CFLAGS) /Fo"$(INTDIR)\\" $<
|
|
|
|
|