Fixed build on case-insensitive filesystems
This commit is contained in:
parent
674e836f6c
commit
c84954a91d
|
@ -4,7 +4,7 @@ PREFIX = /usr/local
|
|||
DESTDIR =
|
||||
BINDIR = $(PREFIX)/bin
|
||||
CC ?= cc
|
||||
CPPFLAGSF= -I ../include
|
||||
CPPFLAGSF?=
|
||||
CPPFLAGS?=
|
||||
CFLAGSF = -W
|
||||
CFLAGS = -Wall -g -O2 -pedantic
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* $Id$ */
|
||||
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */
|
||||
/* Copyright (c) 2009-2012 Pierre Pronchery <khorben@defora.org> */
|
||||
/* This file is part of DeforaOS Desktop Panel */
|
||||
/* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -19,7 +19,7 @@
|
|||
# define PANEL_COMMON_H
|
||||
|
||||
# include <gtk/gtk.h>
|
||||
# include "Panel.h"
|
||||
# include "../include/Panel.h"
|
||||
|
||||
|
||||
/* Panel */
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
subdirs=applets
|
||||
targets=panel,panelctl,run
|
||||
cppflags_force=-I ../include
|
||||
#cppflags=-D EMBEDDED
|
||||
cflags_force=-W
|
||||
cflags=-Wall -g -O2 -pedantic
|
||||
|
|
|
@ -3,7 +3,7 @@ PREFIX = /usr/local
|
|||
DESTDIR =
|
||||
BINDIR = $(PREFIX)/bin
|
||||
CC ?= cc
|
||||
CPPFLAGSF= -I ../include -I ../src
|
||||
CPPFLAGSF?=
|
||||
CPPFLAGS?=
|
||||
CFLAGSF = -W `pkg-config --cflags libSystem libDesktop`
|
||||
CFLAGS = -Wall -g -O2
|
||||
|
|
|
@ -27,8 +27,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <System.h>
|
||||
#include <Desktop.h>
|
||||
#include "Panel.h"
|
||||
#include "panel.h"
|
||||
#include "../src/panel.h"
|
||||
#include "../config.h"
|
||||
#ifdef PACKAGE
|
||||
# undef PACKAGE
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
targets=panel-notify,panel-test
|
||||
cppflags_force=-I ../include -I ../src
|
||||
cflags_force=-W `pkg-config --cflags libSystem libDesktop`
|
||||
cflags=-Wall -g -O2
|
||||
ldflags_force=`pkg-config --libs libSystem libDesktop`
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
#include <gtk/gtk.h>
|
||||
#include <System.h>
|
||||
#include <Desktop.h>
|
||||
#include "Panel.h"
|
||||
#include "panel.h"
|
||||
#include "../src/panel.h"
|
||||
#include "../config.h"
|
||||
#ifdef PACKAGE
|
||||
# undef PACKAGE
|
||||
|
|
Loading…
Reference in New Issue
Block a user